home *** CD-ROM | disk | FTP | other *** search
/ Merciful 5 / Merciful - Disc 5.iso / software / p / pcqpascalv1.2d.lha / Include / Prefs / Palette.i < prev    next >
Text File  |  1997-05-06  |  537b  |  23 lines

  1.   {      File format for palette preferences    }
  2.  
  3.  
  4. {$I "Include:Libraries/IffParse.i"}
  5.  
  6.  
  7. const
  8.     ID_PALT = 1346456660;
  9.  
  10. Type
  11.  PalettePrefs = Record
  12.     pap_Reserved     : Array[0..3] of Integer;    { System reserved                }
  13.     pap_4ColorPens   : Array[1..32] of WORD;
  14.     pap_8ColorPens   : Array[1..32] of WORD;
  15.     pap_Colors       : Array[1..32] of ColorSpec;     { Used as full 16-bit RGB values }
  16.  end;
  17.  PalettePrefsPtr = ^PalettePrefs;
  18.  
  19.  
  20. {***************************************************************************}
  21.  
  22.  
  23.